runtime.typePointers.typ (field)

17 uses

	runtime (current package)
		mbitmap.go#L140: 	typ *_type
		mbitmap.go#L201: 	return typePointers{elem: addr, addr: addr, mask: readUintptr(gcdata), typ: typ}
		mbitmap.go#L224: 	return typePointers{elem: addr, addr: addr, mask: readUintptr(gcdata), typ: typ}
		mbitmap.go#L280: 		if tp.typ == nil {
		mbitmap.go#L285: 		if tp.addr+goarch.PtrSize*ptrBits >= tp.elem+tp.typ.PtrBytes {
		mbitmap.go#L286: 			tp.elem += tp.typ.Size_
		mbitmap.go#L298: 		tp.mask = readUintptr(addb(tp.typ.GCData, (tp.addr-tp.elem)/goarch.PtrSize/8))
		mbitmap.go#L319: 	if tp.typ == nil {
		mbitmap.go#L333: 	if n >= tp.typ.Size_ {
		mbitmap.go#L337: 		tp.elem += (tp.addr - tp.elem + n) / tp.typ.Size_ * tp.typ.Size_
		mbitmap.go#L343: 	if tp.addr-tp.elem >= tp.typ.PtrBytes {
		mbitmap.go#L346: 		tp.elem += tp.typ.Size_
		mbitmap.go#L348: 		tp.mask = readUintptr(tp.typ.GCData)
		mbitmap.go#L357: 		tp.mask = readUintptr(addb(tp.typ.GCData, (tp.addr-tp.elem)/goarch.PtrSize/8))
		mbitmap.go#L963: 	print("runtime: tp.elem=", hex(tp.elem), " tp.typ=", unsafe.Pointer(tp.typ), "\n")
		traceallocfree.go#L70: 				trace.HeapObjectExists(x, s.typePointersOfUnchecked(x).typ)